特別注意,本系統僅供內部研究與資訊整理,不構成投資建議,亦不面向外部客戶提供受監管服務。
所有資料均按我們目前掌握的來源提供,但不構成任何形式的保證。
我們不保證任何資訊在所有情況下均屬完整、準確或可即時使用。
本系統不接收客戶資金、不提供個人化推薦,也不能取代受監管的專業意見。
把市場資料、組合淨值曲線、期間表現與企業頭寸記錄放在同一個專注空間。
indicator("Double Moving Average Trading Strategy", overlay=true)
fastLength = input.int(10, title="Fast MA Period")
slowLength = input.int(20, title="Slow MA Period")
fastMA = ta.sma(close, fastLength)
slowMA = ta.sma(close, slowLength)
plot(fastMA, title="Fast MA", color=color.blue)
plot(slowMA, title="Slow MA", color=color.red)
if (ta.crossover(fastMA, slowMA))
label.new(bar_index, high, text="Buy", color=color.green)
alert("Buy at: " + str.tostring(close), alert.freq_once_per_bar_close)
if (ta.crossunder(fastMA, slowMA))
label.new(bar_index, low, text="Sell", color=color.red)
alert("Sell at: " + str.tostring(close), alert.freq_once_per_bar_close)市場資料:追蹤指數、貨幣、商品、觀察列表與參考價格,只呈現資料,不把資料包裝成建議。
研究記錄:記錄 thesis、假設、風險、進出場計劃與事後回顧,讓研究流程可以被檢查。
觀察訊號:為市場變動建立觀察規則,並把提醒歷史接回研究流程與頭寸記錄。
進一步說明本系統的用途與邊界,方便你理解各項功能的定位。

簡要說明工作台、資料來源及其使用限制
使用此表格回報資料問題、要求釐清內容,或留下內部研究備註。
Copyright © HW & YZ LLP
Powered by Vector Lab.