Skip to content

Instantly share code, notes, and snippets.

@miratcan
miratcan / market_thesis.md
Last active February 15, 2026 21:44
Crypto Market Thesis: Wyckoff Accumulation (Bear Phase)

Market Manipulation / Wyckoff Accumulation Theory (2026-02-16)

User's thesis about the current BTC bear market (Feb 2026). This is the user's active trading thesis — reference in future sessions when discussing market conditions, SHORT positions, or training parameters.

Core Theory

The current BTC crash (98k → 60k) is a coordinated Wyckoff accumulation by whales/government, NOT a genuine bear market. The goal is to accumulate BTC cheaply before the US Strategic Bitcoin Reserve is filled.

Key Elements

@miratcan
miratcan / gist:f2860e216986abf9c876449198f7c33d
Last active February 14, 2026 18:13
Jarvis Emergency Mode - LLM Trading Prompt (Claude Code + simsar MCP)
# Jarvis Emergency Mode - LLM Trading Prompt
When emergency mode is active, this prompt is sent to an LLM subprocess
with access to market data tools. The LLM fetches whatever data it needs
and makes trading decisions autonomously. LLM-agnostic — works with any
model that supports tool use or HTTP calls.
---
## Prompt (built per symbol)
@miratcan
miratcan / market-analysis-2026-02-12.md
Last active February 12, 2026 10:50
Kripto Piyasa Analizi - 12 Şubat 2026 (BTC 7K, Fear&Greed 5, Dead Cat Bounce?)

Kripto Piyasa Analizi - 12 Şubat 2026

Piyasa Durumu

Gösterge Değer Yorum
Fear & Greed 5 EXTREME FEAR - tarihsel olarak nadir ve dip bölgesi
BTC Fiyat $67,666 2 haftada $89K → $67K (-%24)
ETH Fiyat $1,982 2 haftada $3,010 → $1,982 (-%34)
BTC Daily RSI 26.6 OVERSOLD
@miratcan
miratcan / deal-gatekeeper.md
Last active February 4, 2026 00:48
AI-Powered Investor Matching Platform - Proje Brief

Deal Gatekeeper — Tam Doküman


BÖLÜM 1: İŞ MODELİ


Konsept Özeti

AGENTS.md (Generalized)

This document defines the collaboration rules and development principles expected of all AI agents and contributors across projects. Originally designed for a scalable content-sharing platform, these guidelines are now abstracted for universal use.


🔧 General Code Style (Universal)

  • Prioritize simplicity, readability, and maintainability.
  • Avoid code duplication; reuse logic and components.
@miratcan
miratcan / game_tester.lua
Last active October 27, 2023 12:34
Run tests on game before start on TIC-80
local testRunner = {
tests = {
test_foo = function() end,
test_bar = function() end,
test_zoo = function() end
},
init = function(self)
self._tests = {}
for n, f in pairs(self.tests) do
table.insert(self._tests, {n, f})
@miratcan
miratcan / setup_a_new_mac_for_python_development.sh
Last active July 10, 2023 08:27
Setup a New Mac For Development
brew install iterm2 git docker docker-compose btop neovim nvm pyenv pipx zsh zsh-completions wget grep curl tmux ranger
@miratcan
miratcan / blockchain.py
Last active September 22, 2023 12:33
Blockchain with Python
from hashlib import sha256
from time import time
HARDNESS = 4
VALID_BLOCK_PREFIX = "0" * HARDNESS
def is_valid_hash(hash_str):
return hash_str.startswith(VALID_BLOCK_PREFIX)
@miratcan
miratcan / annotated_turkish_syllables.py
Last active August 28, 2025 22:53
Python'da Türkçe Heceleme Yapma
def get_syllables(word):
syllables = []
"""
Aşağıdaki satır gelen kelimenin ünlü harfler 1, ünsüzler 0 olacak
şekilde desenini çıkarır.
Örneğin: arabacı -> 1010101, türkiye -> 010010
"""
@miratcan
miratcan / cleanup_disqus_csv.py
Created October 9, 2016 13:40
Cleanup script for Disqus URL Mapper output.
import sys
from urllib2 import urlopen, HTTPError
from urllib import urlencode, unquote_plus
from json import loads
from time import sleep
API_SECRET = '__YOUR_DUSQUS_APP_API_SECRET__'
FORUM_ID = '___YOUR_DISQUS_FORUM_ID___'