跳到主要內容

插針與流動性

吃單會有流動性問題,會變成很多人要跟主力搶,主力反而買不到

插針分非常多種

1. 上檔價位 往上漲 出現往下插針 通常有可能是 中小型部位市價 take profit ,但買盤不夠,所以插針

2. 上檔價位 往上漲 出現往上插針
    有可能是中小型部位追高 或空單爆倉

3. 下跌價格破新低出現往下插針,是爆倉可能性高一點
    但是下跌沒破新低卻往下插,可能是中小型部位主動停損
    或恐慌賣盤 但有大戶承接

還有一種是比較專業的操盤者會用市價保護單,就是 limite taker order

這種出現的時候如果買盤 賣盤不夠 就會變實心的分線

留言

這個網誌中的熱門文章

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 版本控管