晴瓦林
讚了
- YouTube "混沌理論是一種數學理論,它解釋了某些系統爲何會表現出不可預測的行爲。"
- YouTube "你不會相信這張150年的圖表對股市的預測。"
$標普500指數 (.SPX.US)$ $美元指數 (USDindex.FX)$ $標普500波動率指數 (.VIX.US)$
- YouTube "你不會相信這張150年的圖表對股市的預測。"
$標普500指數 (.SPX.US)$ $美元指數 (USDindex.FX)$ $標普500波動率指數 (.VIX.US)$
已翻譯
3
晴瓦林
讚了
2025年7月8日
🧭 第一部分 – 事件完整時間線(2025年4月–8月)
a) 第一步 – 初步升級(四月至五月)
在2025年4月,特朗普總統重燃貿易緊張局勢,提出"對等關稅"的原則:對任何外國關稅採取相同的美國反應。這一策略反映了貿易不平衡等同於戰略不公正的看法——再次呼應2018年的邏輯。
特朗普援引了IEEPA(國際緊急經濟權力法),聲明...
🧭 第一部分 – 事件完整時間線(2025年4月–8月)
a) 第一步 – 初步升級(四月至五月)
在2025年4月,特朗普總統重燃貿易緊張局勢,提出"對等關稅"的原則:對任何外國關稅採取相同的美國反應。這一策略反映了貿易不平衡等同於戰略不公正的看法——再次呼應2018年的邏輯。
特朗普援引了IEEPA(國際緊急經濟權力法),聲明...
已翻譯
35
5
6
晴瓦林
讚了
晴瓦林
讚了
$博通 (AVGO.US)$ 在過去幾天裏,我們都在問一個問題:"儘管獲得恒星幣的收益,爲什麼它還是在下跌?"。我們看到機構投資者一直在持續撤資,而支持位似乎被散戶投資者擡回來了。
他們是否知道我們不知道的事情?一個可能讓機構投資者感到恐慌的圖表是羅素2000指數與標準普爾500指數的總回報。
該圖表是...
他們是否知道我們不知道的事情?一個可能讓機構投資者感到恐慌的圖表是羅素2000指數與標準普爾500指數的總回報。
該圖表是...
已翻譯
6
晴瓦林
讚了
$2倍做多恐慌指數期貨ETF (UVIX.US)$ 剛剛查看,聚會還沒有結束。請耐心等待,等到26或更低。DT將在14/6慶祝他的生日,所以這周和下週美國指數很可能會上漲…..
我的策略是:等到26或更低,那時是買入的最佳機會。聚會將在14/6後結束…. 提醒:15/6後是收穫時間 😁 在這兩週內買入。乾杯!
我的策略是:等到26或更低,那時是買入的最佳機會。聚會將在14/6後結束…. 提醒:15/6後是收穫時間 😁 在這兩週內買入。乾杯!
已翻譯

8
1
晴瓦林
讚了
$比特幣 (BTC.CC)$ 2025年6月3日
📊 1️⃣ 全球貨幣背景與市場結構
🧭 股市 – SPY (S&P 500)
當前價格:$592.71 (+0.56%)
結構:市場明顯從5月低點$481.80反彈。持續的更高低點表明買方目前仍在控制中。
趨勢:短期趨勢保持看好,但價格當前正在測試$592與$595之間的主要支撐位。若能夠乾淨地突破該區域,可能將開啓新一波上漲...
📊 1️⃣ 全球貨幣背景與市場結構
🧭 股市 – SPY (S&P 500)
當前價格:$592.71 (+0.56%)
結構:市場明顯從5月低點$481.80反彈。持續的更高低點表明買方目前仍在控制中。
趨勢:短期趨勢保持看好,但價格當前正在測試$592與$595之間的主要支撐位。若能夠乾淨地突破該區域,可能將開啓新一波上漲...
已翻譯
20
4
![[empty]](https://static.moomoo.com/node_futunn_nnq/assets/images/folder.5c37692712.png)
![[error]](https://static.moomoo.com/node_futunn_nnq/assets/images/no-network.991ae8055c.png)
晴瓦林 樓主 : //@version=6
strategy("NDX-XAU 動量投資", "NXMI", initial_capital=100, pyramiding=0, margin_long=0, margin_short=0)
trading = input.string("僅做多", "交易", options=["關閉", "僅做多", "做空", "止損"])
cci_length = input.int(16, "CCI 週期", [16, 49, 88])
performance_length = 251
if timeframe.ismonthly
performance_length := 12
else if timeframe.isweekly
performance_length := 52
ndx = request.security("NDX", timeframe.period, ohlc4)
xau = request.security("XAUUSD", timeframe.period, ohlc4)
period_ndx_return = ndx / (ndx - ta.change(ndx, performance_length)) - 1.0
period_xau_return = xau / (xau - ta.change(xau, performance_length)) - 1.0
ndx_xau_yield = period_ndx_return - period_xau_return
hline(0.0, "Middle Band", color=color.new(#787B86, 50))
upper_band = 0.2125
lower_band = 0.0
downturn_band = -0.3
band0 = hline(upper_band, "Upper Band", color=#787B86, linestyle=hline.style_dashed)
band1 = hline(lower_band, "Lower Band", color=#787B86, linestyle=hline.style_dashed)
band2 = hline(downturn_band, "Downturn Band", color=#787B86, linestyle=hline.style_dashed)
fill(band0, band1, color=color.new(#ffff00, 90), title="Warning Background")
fill(band1, band2, color=color.new(#0000ff, 90), title="Downturn Background")
plot(ndx_xau_yield, color=ndx_xau_yield > 0.0 ? #0000ff : #ff0000, title="NDX-XAU Excess Rate", precision=4)
plot(period_xau_return, color=period_xau_return > 0.0 ? #ff00ff : #ff0000, title="XAU Return", precision=4)
plot(period_ndx_return, color=period_ndx_return > upper_band ? #ffff00 : #ff0000, title="NDX Return", precision=4)
cci = ta.cci(ohlc4, cci_length)
if (trading != "Off")
stock_buy_entry = ta.crossover(ta.sma(ndx_xau_yield, 3), 0.0)
stock_sell_entry = ta.crossunder(ta.sma(ndx_xau_yield, 3), 0.0)
stock_short_close = ta.crossover(cci, 100.0)
if (stock_buy_entry)
strategy.entry("LE", strategy.long, comment="Long Entry")
if (trading == "僅做多" and stock_sell_entry)
strategy.close("LE", comment="平好倉")
if ((trading == "做空" or trading == "做空止損") and stock_sell_entry)
strategy.entry("SE", strategy.short, comment="做空入場")
if (trading == "做空止損" and stock_short_close)
strategy.close("SE", comment="平淡仓")