# CCXT with Julia

**URL:** https://discourse.julialang.org/t/ccxt-with-julia/90905
**Category:** General Usage
**Created:** [November 27, 2022, 3:38pm UTC](https://discourse.julialang.org/t/ccxt-with-julia/90905 "2022-11-27T15:38:04Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![W4C](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/w4c/32/43621_2.png) [@W4C](https://discourse.julialang.org/u/W4C)
#### Post date: [November 27, 2022, 3:38pm UTC](https://discourse.julialang.org/t/ccxt-with-julia/90905/1 "2022-11-27T15:38:04Z")

</div>

Hello,

I wonder if some people here have been able to run CCXT [GitHub - ccxt/ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges](https://github.com/ccxt/ccxt/) with Julia  
Wondering if PyCall is the way to go [[New Language] Julia · Issue #15852 · ccxt/ccxt · GitHub](https://github.com/ccxt/ccxt/issues/15852)  
Any opinion ?

Kind regards

---

<div class="post-metadata">

### Author: ![robsmith11](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/robsmith11/32/29641_2.png) [@robsmith11](https://discourse.julialang.org/u/robsmith11)
#### Post date: [November 27, 2022, 6:02pm UTC](https://discourse.julialang.org/t/ccxt-with-julia/90905/2 "2022-11-27T18:02:09Z")

</div>

PyCall should probably work. But depending on your use case, I’d suggest considering writing to the APIs directly in Julia using HTTP.jl or Websockets.jl. Most endpoints can be called with just a few lines of code.

CCXT only covers a fraction of the available API endpoints, even for popular exchanges and has many inconsistencies. And for any real trading, you’ll need to familiarize yourself with the idiosyncrasies of each exchange anyway.

---

<div class="post-metadata">

### Author: ![W4C](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/w4c/32/43621_2.png) [@W4C](https://discourse.julialang.org/u/W4C)
#### Post date: [July 7, 2023, 3:01pm UTC](https://discourse.julialang.org/t/ccxt-with-julia/90905/3 "2023-07-07T15:01:14Z")

</div>

Hi,

It seems that some work have been done at [https://github.com/panifie/PingPong.jl/tree/master/Ccxt](https://github.com/panifie/PingPong.jl/tree/master/Ccxt)

but I don’t know how complete it’s and if / when it will be published “upstream” (ie in CCXT repository)

Kind regards
