跳到主要內容

12 月代辦事項


1. 盡快把 bbgo 支援 binance futures 的部分告一段落!!!然後再看看 BBG token work group 能幫些什麼忙,我們 BBG 前陣子上 Polygon 了,可以從幣安買 Matic 出金到 Metamask 換成 WMATIC 用 QuickSwap 來交易~

(備註:Pull #278)


2. 研究 Syndica,據瞭解其服務主要提供 Solana 的 RPC node 基礎建設服務加上 CDN,另有類似 Amplitude, GA 的用戶 geo cohort 等分析服務(HTTP request based),Chamath Palihapitiya 的 Social Capital 有投資。

(備註:Ethereum 的類似競品為 infura.io)


3. 看一下 NianticLabs 的 lightship AR developer kit,大致上跟之前想的差不多。除了深度感測(實體物檔虛擬物)、環境光源(虛擬陰影)、場景重建,主要去瞭解怎麼做到多人同步,這真的很厲害!可惜它和 Unity 綁的比較深.. 而非 UE4

(備註:免費方案到 May, 01, 2022)


4. 讓 xv6 支援 virt-io VGA,看能不能搞出一個有視窗的作業系統。不過 QEMU 好像也是用 SDL2 ?

(備註:QEMU 得更新到 6.1 版,記得用 SiFive 的 source 來 build)

留言

這個網誌中的熱門文章

Papers on Quant Research

  The Cross-Section of Expected Stock Returns   Source  https://www.ivey.uwo.ca/media/3775518/the_cross-section_of_expected_stock_returns.pdf Comment  This is the famous Fama-French paper, which proposed the Fama-French factor model, and the basics of cross-sectional equity research methods. Value and Momentum Everywhere   Source   https://pages.stern.nyu.edu/~lpederse/papers/ValMomEverywhere.pdf Comment  A good introduction to value and momentum; they can generate abnormal returns for individual stocks within several countries, across country equity indices, government bonds, currencies, and commodities. Mean Reversion in Stock Prices: Evidence and Implications   Source   http://papers.ssrn.com/sol3/papers.cfm?abstract_id=227278 Comment  One of the earliest papers reflecting the mean-reversion nature of stock prices. Price Momentum and Trading Volume   Source   http://technicalanalysis.org.uk/volume/LeSw00.pdf Comment  Gi...

造市

今天約略研究了一下市場造市商(Market Making)怎麼運作的,覺得很酷!思維跟 Retails 的視角不太一樣,做點小筆記。 先講結論:  - Market maker offer prices to buy and sell. Earn a spread.  - Market can be either buyers or sellers, traders/investors. 一開始是看到了 Himmingbot.io 這個專案,它是 open source 的量化造市機器人,做的算蠻久的,想直接體驗的人也有 YT 影片可以先看看。 一個專業造市商的目標是:Provide liquidity while hedging market risk. And earn consistent profits from liquidity rewards. 造市,對交易者(這邊特指 Taker)的好處是:不需要找到交易的對手方,能夠直接和造市商成交。 以前在股市,造市商只有一些大機構(有錢人),如一些特許的量化基金等。通常是交易所付很多錢請他們提供流動性。 但如今,在 Crypto 市場,散戶們也能稍微體驗當造市商的感覺,如:質押 trading pair 當 LP (流動性提供者)、網格交易(一種掛一堆限價單,賺些微差, spread)之類的方法。 e.g.,   - 「網格交易」算一種 Maker 策略,因為它 submit both bid and ask limit orders 可以理解成提供流動性。  -  「搬磚套利」算一種 Taker 策略,例如跨交易所(或跨鏈)的方式即專吃流動性。

Git 注意事項

使用 Git 的一些技巧 1. git pull 的時候可以用 --rebase 比較不會有多餘的 merge point 2. 善用 squash commit,squash 完心情都很好 3. commit 之前一定要先 format code 一次,不然多出來的 reformat commit 會很難整理 4. 拆 commit,盡可能讓每個 commit 都可以 build & test,也比較好回到上游 5. 如果 local 修改的整理過的 commit tree 要 rebase 上去就只能用 rebase onto e.g., git fetch upstream git checkout -B local-rebase-branch upstream/feature/binance-futures git rebase -i upstream/main .... 改改改 git push -f origin HEAD -B 會洗掉原本就有的 local branch CS Visualized: Useful Git Commands Code Cleanup: Splitting Up git Commits In the Middle of a Branch Git rebase --onto an overview 30 天精通 Git 版本控管