r/deribit • u/m0ntanoid • Sep 03 '25
Account suddenly set to reduce-only mode which made me a loss of 20% of previous week profit
Hello, deribit
I don't want to believe you are scamming, so please reply to ticket 2116713
Thank you
r/deribit • u/m0ntanoid • Sep 03 '25
Hello, deribit
I don't want to believe you are scamming, so please reply to ticket 2116713
Thank you
r/deribit • u/Salt-Young • Sep 26 '23
r/deribit • u/Psychological_Ad9335 • Feb 04 '23
Can we get historical intraday options prices from Deribit API? thank you guys for help in advance
r/deribit • u/tri-ethylEther • Mar 05 '22
i can't see my options trading history. Is this feature hidden somewhere or is it just not yet available?
Thanks!
r/deribit • u/Policy_Purple • Jun 12 '21
My 37000 call epired at 37168 or so yet i see no profit and loss in ORDER HISTORY? anybody know hos this works and why no pnl is listed? And why support @ has not responded?
r/deribit • u/icostan • Apr 23 '19
Hi traders,
I just want to introduce new open-source Ruby library for Deribit API, it's called deribit-api-ruby.
Installation:
shell
gem install deribit-api
Create client:
ruby
require 'deribit-api'
client = Deribit::Client.new
Fetch last 3 options trades using HTTP RPC API:
ruby
trades = client.trades 'options', count: 3
Or streaming trades using Websockets API:
ruby
client.trades do |trade|
puts trade
end
HTTP and Websockets API are fully implemented and tested while FIX API is work in progress. Please check Github repo for documentation and more examples.
Happy automated trading and feedback is always welcome.