All posts by admin

image
July 29, 2025

Automating Crypto Arbitrage with Crypto-Pandas and CCXT

Automating Crypto Arbitrage with Crypto-Pandas and CCXT: A Complete Walkthrough In crypto trading, inefficiencies across exchanges aren’t mistakes, but opportunities. Having the ability to detect and see these price differences can give traders a clear advantage in competition, especially in arbitrage plays. In this guide, let’s get our basics...

Read More
image
July 23, 2025

How Crypto-Pandas Empowers More Than Just Quant Developers

How Crypto-Pandas Empowers More Than Just Quant Developers In crypto, accessing reliable exchange data can feel like parsing chaos in real time. APIs are inconsistent, documentation is thin, and custom data pipelines are fragile. That’s exactly why Crypto-Pandas was created: to make structured, exchange-grade data as accessible as a...

Read More
image
July 17, 2025

How to Create, Fetch, Edit, and Cancel Crypto Orders in Pandas

How to Create, Fetch, Edit, and Cancel Crypto Orders in Pandas Managing crypto orders through raw exchange APIs is a noisy experience. If you’ve worked with REST endpoints like createOrders, fetchOpenOrders, or cancelOrders, you know the drill: every exchange has different parameters, symbols, limits, and quirks. That’s why we...

Read More
image
July 17, 2025

Effortless Crypto Data in Pandas: Introducing crypto-pandas

Effortless Crypto Data in Pandas: Introducing Crypto-Pandas Working with crypto exchange data can be messy. APIs return raw JSON, data structures vary between exchanges, and transforming everything into Pandas DataFrames becomes a repetitive chore. That’s why we built Crypto-Pandas — a Python library that makes querying crypto data from...

Read More
image
July 10, 2025

Load Crypto Data for 1000s of Symbols in Parallel — with CCXT, Pandas, and Crypto-Pandas

Load Crypto Data for 1000s of Symbols in Parallel — with CCXT, Pandas, and Crypto-Pandas If you’ve ever tried to collect OHLCV data for hundreds of symbols from a crypto exchange, you know how slow and error-prone it can be.Crypto-Pandas changes that.Built on top of CCXT and Pandas, Crypto-Pandas...

Read More
image
June 13, 2025

11 Essential Features Every Crypto Trader Needs in a Trading Tool

11 Essential Features Every Crypto Trader Needs in a Trading Tool In the fast-paced world of crypto trading, the right trading tool can make all the difference. Whether you’re a seasoned trader or just a beginner, having a reliable platform with advanced automation features is crucial. Let’s dive into...

Read More
image
June 12, 2025

Raindrop Charts in Python in 5 steps.

Raindrop Charts in Python in 5 Steps Raindrop charts are one of the latest chart types to appear in the financial industry. Brought forward by TrendSpider in a 2019 whitepaper, they offer a compelling alternative to traditional Japanese Candlestick charts. Why should I use Raindrop charts? When it comes...

Read More
image
June 12, 2025

Advanced Tips for Candlestick Plots in Python

Advanced Tips for Candlestick Plots in Python We start by importing the necessary libraries, loading a stock price from Yfinance, and initializing an empty plot composed of one main subplot and two marginal subplots. In this article, we explore 3 ways of making more insightful candlestick plots. We will...

Read More