iT邦幫忙

0

[Day26]用Python分析股票四大買賣點

  • 分享至 

  • xImage
  •  

參考資料
https://www.pressplay.cc/project/68144F90F7BCFC5BCC7548652704E725/articles/95005086F1FCAA6A5B17FC2DD13AC02A
首先複習一下使用stock來取得歷史股票資訊
https://ithelp.ithome.com.tw/upload/images/20221127/20153234s7S15Nxqps.jpg
import twstock
stock2330=twstock.Stock('2330')
stock2330.price(回傳收盤價)
這邊一樣是獲取台積電的資訊
https://ithelp.ithome.com.tw/upload/images/20221127/20153234tdPMNpL6QF.jpg
stock2330.high(回傳最高價)
注意!!
stock的資料順序由上到下是從舊到新
我們可以透用date取得各資料對應的日期
https://ithelp.ithome.com.tw/upload/images/20221127/20153234D346A58Tun.jpg
stock2330.date(回傳資料對應的日期)
我們也可以抓取指定日期或區間之資料
https://ithelp.ithome.com.tw/upload/images/20221127/20153234xNjKe5vMxj.jpg
stock2330.fetch_31() (獲取近31天內的資料)
https://ithelp.ithome.com.tw/upload/images/20221127/20153234gqmvcWk3yF.jpg
stock2330.fetch(2022,10) (獲取2022年10月的資料)
https://ithelp.ithome.com.tw/upload/images/20221127/20153234gJDFxHCaoo.jpg
stock2330.fetch_from(2022,1) (獲取從2022年1月至今的資料)
最後是這次的重點bestFourPoint
該功能是透過四大買賣點來判斷是否該買賣股票
四大買賣點為:
1.量大收紅/量大收黑
2.量縮價不跌/量縮價跌
3.三日均價由上往下/三日均價由下往上
4.三日均價大於六日均價/三日均價小於六日均價
https://ithelp.ithome.com.tw/upload/images/20221127/20153234NHOxhribUk.jpg
bestfourpoint=twstock.BestFourPoint(stock2330)
bestfourpoint.best_four_point_to_buy()
判斷是否為四大買點
https://ithelp.ithome.com.tw/upload/images/20221127/20153234y4Zf9DImze.jpg
bestfourpoint.best_four_point_to_sell()
判斷是否為四大賣點
https://ithelp.ithome.com.tw/upload/images/20221127/20153234WFFulfVYoE.jpg
bestfourpoint.best_four_point()
指標綜合判斷


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言