特別是剛剛啟動XQ後, 我的XS指標放入疊圖上,看K線圖左右移動和上下換股票時會讀圈 然後閃退
下面是我的XS指標
//----------處置股----------------- if BarFreq <> "d" and BarFreq <> "ad" then raiseruntimeerror("僅支援日與還原日頻率"); value1 = GetField("處置開始日期"); value2 = GetField("處置結束日期"); value3 = getField("Date"); //if value1 = 0 then raiseruntimeerror("無處置的歷史紀錄"); //用點顯示處置區間 if value3 >= value1 and value3 <= value2 then plot1(value1,"處置中") //尚在處置中 else noplot(1); //用來顯示處置相關的日期數值 if value1 <> value1[1] or (value3 >= value1 and value3 <= value2) then begin plot3(value1,"開始日期"); plot4(value2,"結束日期"); end else begin noplot(3); noplot(4); end; //-------------------------------- value5=GetField("法說會日期"); if value5=date then plot5(value5,"法說會日期"); //----------------大盤上漲波段 if Date >= 20240912 and 20241018>=date or date>=20240806 and 20240820>=date or date>=20240423 and date<=20240711 or date>=20240118 and date<=20240410 or date>=20231101 and date<=20231229 or date>=20230516 and date<=20230615 or date>=20230103 and date<=20230203 or date>=20221027 and date<=20221201 or date>=20220713 and date<=20220817 or date>=20220126 and date<=20220210 or date>=20211221 and date<=20220105 or date>=20211015 and date<=20211118 or date>=20210820 and date<=20210906 or date>=20210518 and date<=20210705 or date>=20201102 and date<=20210427 or date>=20200324 and date<=20200728 or date>=20190827 and date<=20191218 or date>=20190529 and date<=20190723 or date>=20190107 and date<=20190417 or date>=20180212 and date<=20180313 or date>=20171227 and date<=20180123 then plot6(date); //----------------大盤下跌波段 if date >= 20240712 and date<=20240805 or date>=20240411 and date<=20240422 or date>=20221206 and date<=20221229 or date>=20220822 and date<=20221025 or date>=20220601 and date<=20220706 or date>=20220331 and date<=20220512 or date>=20220222 and date<=20220308 or date>=20220118 and date<=20220115 or date>=20210914 and date<=20211004 or date>=20210805 and date<=20210819 or date>=20210716 and date<=20210728 or date>=20210429 and date<=20210513 or date>=20200306 and date<=20200319 or date>=20190730 and date<=20190806 or date>=20190506 and date<=20190523 or date>=20181002 and date<=20181026 or date>=20180202 and date<=20180209 or date>=20150428 and date<=20150824 or date>=20110608 and date<=20111219 or date>=20071030 and date<=20081120 or date>=20040305 and date<=20040721 or date>=20020423 and date<=20021011 or date>=20000219 and date<=20011003 then plot7(date);
2.再來就是XS檔案匯出匯入副檔名不同.
.xsb__DAQXQLITE, .xsb_DAQXQLITE
3.我訂閱美股的功能什麼時候會好?有2個禮拜了.
4.有些免費網站可以做到的,像是K線圖上有財報發布日期,財報數據可以在K線上看
XQ也應該可以做到.
9 評論