Spyder talib延伸文章資訊,搜尋引擎最佳文章推薦

1. 「Python」talib的方法及使用talib计算上百种技术分析指标

在安装spyder上用pip安装talib出现错误信息吗? Collecting talibNote: you may need to restart the kernel to use updated packages. Downloading talib-0.1.1.tar.​gz ...



2. 用Python 快速計算158 種技術指標!. TA-Lib 的完整教學

先匯入本文所需的modules: import numpy as np import pandas as pd import talib. 一行指令,就可以得到TA-Lib 提供的所有技術指標的代碼:.AI股仔-創新理財模式科技學習投資理財股仔粉絲專頁用Python快速計算158種技術指標!AIStockBoyFollowSep27,2019·8minreadTA-Lib的完整教學如果想看更多關於AI與理財的創作,歡迎追蹤我的臉書專業!小小前言上週分享了如何建立自己的資料庫—美股篇(點此連結前往文章),內容教各位使用Python程式從各個管道取得總經、股價、財報、情緒等等相關的資料,但卻沒有提到技術指標,為什麼呢?原因是有了價量資料後,我們可以使用強大的Pythonmodule—TA-Lib,在一兩秒的時間內快速計算多達158種的技術指標!指標的選擇眾多以外,還可以微調每個技術指標參數值的設定,非常好用!我們也因此不需要特地找資源管道去取得技術指標的資料了。

😃本文內容大綱TA-Lib的安裝怎麼看TA-Lib提供了哪些技術指標?準備好一份價量資料,開始計算158種技術指標!※TA-Lib的安裝如果是使用GoogleColab的讀者,請複製以下程式碼貼上colab後執行運作,就可以直接安裝好TA-Lib了喔!🍰如果是在自己電腦上安裝的話,依照平常安裝module的慣性,首先都會:pipinstallTA-Lib#windows/macbrewinstallta-lib#mac如果是Windows的話,一般來說都會出現各種的錯誤訊息😵,沒關係!請照著以下步驟安裝:1.前往這個網站下載.whl檔案(點此連結前往)2.依照自己電腦Python版本選擇相對應的.whl檔案3.下載好之後,複製檔案的全名,記得要包含『.whl』喔!4.也可透過cd轉至對應資料夾5.輸入『pipinstall』接著把複製好的檔案全名貼上,再按執行6.這樣就成功安裝TA-Lib了!👍※怎麼看TA-Lib提供了哪些技術指標?先匯入本文所需的modules:importnumpyasnpimportpandasaspdimporttalib一行指令,就可以得到TA-Lib提供的所有技術指標的代碼:清單的部份截圖指標太多太亂沒關係,一行指令取得分類清單:整理一下類別名稱&指標總數雖然快速取得了所有技術指標的代碼,但很多代碼其實有看沒有懂。

我們還是需要去看TA-Lib官方文件,才能了解每一個代碼指的是哪一個技術指標,以及預設定的參數是什麼。

(TA-Lib文件連結請按此)紅圈就是我們剛才用Python取得的所有分類選一個分類點進去,就可看到該分類每一項技術指標的完整資訊以上圖為例,雖然我們用get_function()可得知有一個技術指標叫做『ADX』,但要看TA-Lib文件才能知道『ADX』技術指標原來就是『AverageDirectionalMovementIndex』。

接著再去Google或維基百科一番,我們就知道原來『ADX』中文可翻譯做『平均動向指數』,由WellesWilderJR.提出。

這個指標主要是衡量一個趨勢走勢的強度,其中並無趨勢方向之分,計算過程參考下段內容或直接忽略😆。

如果我們要自己算出這個指標,要先:1.算出各期TR、+DM、-DM2.再依參數值(預設為14)平滑TR3.拿TR14計算+DM、-DM3.再依據平滑後的+DM14、-DM14計算DX4.完成後再計算DX移動平均(預設為14)使用TA-Lib就可以省去建構這些指標計算函數的時間!而省下來的時間就可以照著上面示範的過程(查技術指標全名→Google/Wiki指標涵義)去了解技術指標的涵義,產生概念後才知道如何應用指標喔!🌱※準備好一份價量資料,開始計算158種技術指標!我們先準備一份價量資料,來示範如何用TA-Lib算出技術指標。

如果手頭上沒有資料的話,可以參考這篇文章去抓資料。

沒時間慢慢讀那一篇文章的話,就先複製貼上這段程式碼,快速從yahoofinance中取得AAPL的價量資料來練習TA-Lib!#安裝yfinancepipinstallyfinance#匯入yfinanceimportyfinanceasyf#取得AAPL價量資料df=yf.Ticker('AAPL').history(period='max')計算方法1:FunctionAPI例1:先算個ADX一切技術指標的計算都需要價量資料:開盤價、最高價、最低價、收盤價、成交量。

而計算ADX指標需要的資料就是上圖括號內的4個參數:資料需求:high:最高價low:最低價close:



3. Trouble Installing TA-Lib in Python 3.7

You need to install TaLib native library binaries first! Then install the python lib with pip (again with pip)! And this order is necessary! You can't go ...JoinStackOverflowtolearn,shareknowledge,andbuildyourcareer.SignupwithemailSignupSignupwithGoogleSignupwithGitHubSignupwithFacebookHomePublicQuestionsTagsUsersCollectivesExploreCollectivesFindaJobJobsCompaniesTeamsStackOverflowforTeams–Collaborateandshareknowledgewithaprivategroup.CreateafreeTeamWhatisTeams?TeamsCreatefreeTeamCollectivesonStackOverflowFindcentralized,trustedcontentandcollaboratearoundthetechnologiesyouusemost.LearnmoreTeamsQ&AforworkConnectandshareknowledgewithinasinglelocationthatisstructuredandeasytosearch.LearnmoreTroubleInstallingTA-LibinPython3.7AskQuestionAsked2years,6monthsagoActive1monthagoViewed16ktimes82IamtryingtoinstallTA-LibforPython3.7.I'vealreadyreadthroughanumberofsolutions,buthavecometoapointIcan'tfigureout.HereisthemessageIgetfrompip:Collectingta-libUsingcachedhttps://files.pythonhosted.org/packages/90/05/d4c6a778d7a7de0be366bc4a850b4ffaeac2abad927f95fa8ba6f355a082/TA-Lib-0.4.17.tar.gzRequirementalreadysatisfied:numpyinc:\python37_64\lib\site-packages(fromta-lib)(1.15.4)Installingcollectedpackages:ta-libRunningsetup.pyinstallforta-lib:startedCommand"c:\python37_64\python.exe-u-c"importsetuptools,tokenize;__file__='C:\\Users\\Todd\\AppData\\Local\\Temp\\pip-install-0c2__0gf\\ta-lib\\setup.py';f=getattr(tokenize,'open',open)(__file__);code=f.read().replace('\r\n','\n');f.close();exec(compile(code,__file__,'exec'))"install--recordC:\Users\Todd\AppData\Local\Temp\pip-record-3dpfanca\install-record.txt--single-version-externally-managed--compile"failedwitherrorcode1inC:\Users\Todd\AppData\Local\Temp\pip-install-0c2__0gf\ta-lib\Runningsetup.pyinstallforta-lib:finishedwithstatus'error'Completeoutputfromcommandc:\python37_64\python.exe-u-c"importsetuptools,tokenize;__file__='C:\\Users\\Todd\\AppData\\Local\\Temp\\pip-install-0c2__0gf\\ta-lib\\setup.py';f=getattr(tokenize,'open',open)(__



4. How to install Ta-Lib in Python

We will then type the following command, “import talib” and then ... Alternatively, you can also open Jupyter notebook (or Spyder) and try to run ...ByIshanShah,RekhitPachanekarandGauravSinghTechnicalindicatorsarecalculatedusinghistoricalpriceandvolumedatatopredictthemarketdirection.Theseindicatorsareaddedonchartsusingwhichyoucansetyourentryandexitsignals.Won’titbeamazingifyoucancomputethesetechnicalindicatorsinpythoninafewlinesofcodeandbacktesttheperformanceofitonmanyfinancialsecurities?WhatstartedoffasahobbybyMarioFortier,Ta-Libpythonlibraryquicklyrosetobecomeoneofthemostfamouslibrariesfortechnicalanalysisofstocksandotherfinancialsecurities.Ta-libincludes150+indicatorssuchasADX,MACD,RSIandBollingerBandsandcandlestickpatternrecognition.However,itisdifficultandsometimesfrustratingtoinstallTa-Libinyourpython.Butdon’tworry,inthisarticle,wewillsimplifytheinstallationforyousothatyoucanfocusoncreatingandbacktestingstrategies.WewillcoverthefollowingtopicsinthisTa-Libinstallationtutorial.EasierMethodInstallTa-LibAcrossPlatformsUsingAnacondaPromptAlternateMethodsInstallTa-LibonWindowsPCInstallTa-LibonMacOSInstallTa-LibonLinuxTechnicalIndicatorsusingPythonTa-LibBeforewebegin,whywasPythonTa-Libcreatedinthefirstplace?Letusthinkaboutthereasonfunctionsweremade.Itwasrealisedthatinsteadofwritingthesamecode,wecouldcreateafunctionandreducethecodelengthbyahugemargin.ItisthesamelogicweapplytoTa-Lib.InsteadofwritingafewlinesofcodetofirstfindtheupperandlowerbandsandthentheBollingerband,weuseTa-Libandinputjustonelineofcodetogettheresult.Thatisall!Keepingthatinmind,letusbeginwiththetutorialonPythonTa-Lib.InstallTa-LibAcrossPlatformsUsingAnacondaPromptAnacondaisanopen-sourcePythondistributionplatformthathelpsindividuals,aswellascommercialenterprises,implementtheirPythoncodeseasily.ItalsomakeslifeeasierwhenitcomestoinstallingvariousPythonlibraries.ToinstallTa-Lib,youwillfirstinstallAnacondaandthenopentheAnacondaprompt.Youwouldthenwritethecode,“condainstall-cconda-forgeta-lib”,andpressthe“En



5. Python學習筆記

接着,打開python,執行import talib便可以愉快的使用了。

... 此時,運行anaconda上任一如Spyder、IPython、Jupyter Notebook等程序,仍無法 ...請輸入正確的登錄賬號或密碼註冊忘記密碼首頁python正文Python學習筆記-talib安裝原創codingcrash2018-08-3016:51經歷網上各種碎片化的百度內容,一邊失敗一邊摸索,終於安裝成功talib,給初學者分享一下安裝過程吧,大神請自動忽略。

首先需要保證你的python、anaconda和電腦位數保持一致,這裏主要介紹一下windows64位操作系統對應的ta-lib安裝方法。

Python3.6.4下載地址:https://www.python.org/downloads/release/python-364/結合百度網友“找找查鼠”的說法,python版本對應的解釋如下:Windowsx86-64web-basedinstaller:需通過聯網完成安裝Windowsx86-64executableinstaller:可執行文件(*.exe)方式安裝Windowsx86-64embeddablezipfile:嵌入式版本,可以集成到其它應用中Anaconda5.0.1下載地址:https://www.anaconda.com/download/同樣選擇下載64位64-BitGraphicalInstaller(515MB)TA-Lib下載地址:http://ta-lib.org/hdr_dw.html選擇下載ta-lib-0.4.0-msvc.zip文件以上軟件下載安裝完成之後,第一步準備工作就算完成了。

下面將開始安裝talib。

https://www.cnblogs.com/Hanuman/p/5943608.html《Win10安裝TA-Libpython庫》是個人覺得幫助非常大的博文,在此引用一下該博主的分享:由於此前下載的ta-lib-0.4.0-msvc.zip中ta-lib的C庫是32位的,需要重新在64位下編譯ta-lib庫。

在此,需要安裝MicrosoftVisualStudio來實現,我安裝的是MicrosoftVisualStudio2015。

VS安裝完成後,運行VisualStudiox86x64CrossToolsCommandPrompt,接着cdc:\ta-lib\c\make\cdr\win32\msvc,在該目錄下執行nmake完成文件的編譯,待執行完畢後,再在該目錄下執行pipinstallta-lib便成功安裝了ta-lib庫,接着,打開python,執行importtalib便可以愉快的使用了。

(注:32位的操作系統不需要以上的編譯操作,可以直接執行pipinstallta-lib安裝)此時,運行anaconda上任一如Spyder、IPython、JupyterNotebook等程序,仍無法使用ta-lib。

在此借鑑網友“duanqs”的博文(https://www.cnblogs.com/duan-qs/p/6289339.html),我們只需在anaconda目錄下打開anacondaprompt,進入anaconda所在的安裝目錄並執行pipinstallta-lib,即可完成在anaconda對ta-lib包的安裝(注:用anacondapip安裝第三方python包皆可參考此方法)。

發表評論登录所有評論還沒有人評論,想成為第一個評論的人麼?請在上方評論欄輸入並且點擊發布.相關文章【轉載】Python處理csv文件Python處理csv文件CSV(Comma-SeparatedValues)即逗號分隔值,可以用Excel打開查看。

由於是純文本,任何編輯器也都可打開。

與Excel文件不同,CSV文件中:值沒有類型,所有值都是字符串不能指定字zqh2020-07-1814:25:30Error:fieldlargerthanfieldlimit(131072)解決方法從csv文件讀取某一列的數據時,報錯顯示:Error:fieldlargerthanfieldlimit(131072)通過判斷髮現是因爲文件的行數超過csv限制的行數,所以導致結果既無法在控制檯打印,試着轉到df,存成csv文hammring2020-07-0812:39:29啓動Jupyter時,遇到sudo:jupyterhub:commandnotfound問題的解決方案最近在學習Jupyter,但是我發



6. Technical indicators in Python

Verify that the installation is proper by running the following command in Ipython console of Spyder IDE. import talib as ta. help(ta). If installation ...Weandthirdpartiessuchasourcustomers,partners,andserviceprovidersusecookiesandsimilartechnologies("cookies")toprovideandsecureourServices,tounderstandandimprovetheirperformance,andtoserverelevantads(includingjobads)onandoffLinkedIn.Formoreinformation,seeourCookiePolicy.SelectAcceptcookiestoconsenttothisuseorManagepreferencestomakeyourcookiechoices.Youcanchangeyourcookiechoicesandwithdrawyourconsentinyoursettingsatanytime.ManagepreferencesAcceptcookiesMostofthedaytradersrelyontechnicalindicatorsindecisionmaking.Weoftencomeacrossportalsthatsellabunchoftechnicalindicatorssoftware,beitMicrosoftexcelorsomeothertool.WiththeadventofopensourcesoftwarelikePythonandR,theneedtorelyonthirdpartysoftwareisgraduallydiminishing.WhileQuantmodpackageinRhasmostoftheindicators,mebeingaPythonpatronwaslookingforasimilarAPIinPython.IstumbleduponTA-Libwhichconsistsofmorethannecessarytechnicalindicators.However,theinstallationdoesnotseemstraightforward.ThispostisintendedtotheaudiencewhotriedandcouldnotsucceedininstallingTA-LibforPython.IamusingAnacondadistributionthuspipinstallercomeswithit.Restofthispostwilllookmorelikeainstructionmanualthanablogpost,sopleaseforgiveme.1)Openthecommandpromptandrunthefollowingcommand.pipinstalltalib2)Ifthepreviouscommanddoesnotthrowanyerror,youareoneoftheluckiestpersonsonthisplanet.VerifythattheinstallationisproperbyrunningthefollowingcommandinIpythonconsoleofSpyderIDE.importtalibastahelp(ta)Ifinstallationissuccessfulthepreviouscommandshouldlistthedocumentation.Ifinstallationisnotsuccessfulandyougetthefollowingerror,gotostep3.3) Gotothefollowingurlandscrolldowntotheta-libheading.http://www.lfd.uci.edu/~gohlke/pythonlibs/4)IfyouareusingSpyder2.7andsystemis32bitdownloadthefirstfile.IfyouareusingSpyder2.7andyoursystemis64bitdownloadsecondfilebyclickingonit.AsyoucanseemySpyderhasPython3.6andthesystemis64bit,soI



7. How to install the ta-lib with Anaconda? · Issue #156 ...

NoPackagesFoundError: Package missing in current win-64 channels: ta-lib. Btw: Is talib from Quantopian?Skiptocontent{{message}}mrjbq7/ta-libNotificationsStar5.4kFork1.2kCodeIssues144Pullrequests7ActionsProjects0WikiSecurityInsightsMoreCodeIssuesPullrequestsActionsProjectsWikiSecurityInsightsNewissueHaveaquestionaboutthisproject?SignupforafreeGitHubaccounttoopenanissueandcontactitsmaintainersandthecommunity.PickausernameEmailAddressPasswordSignupforGitHubByclicking“SignupforGitHub”,youagreetoourtermsofserviceandprivacystatement.We’lloccasionallysendyouaccountrelatedemails.AlreadyonGitHub?SignintoyouraccountJumptobottomHowtoinstalltheta-libwithAnaconda?#156Openthomas2004chopenedthisissueSep17,2017·33commentsOpenHowtoinstalltheta-libwithAnaconda?#156thomas2004chopenedthisissueSep17,2017·33commentsCommentsCopylinkthomas2004chcommentedSep17,2017Ihavetriedusethefollowingtoinstalltheta-libinAnaconda:...condainstall-cquantopianta-lib...ButIgetmessageasfollow:Fetchingpackagemetadata.............Solvingpackagespecifications:.UnsatisfiableError:Thefollowingspecificationswerefoundtobeinconflict:python3.6*ta-lib->numpy1.10*->python2.7*Use"condainfo"toseethedependenciesforeachpackage.Howtodo?Thetextwasupdatedsuccessfully,buttheseerrorswereencountered:Weareunabletoconvertthetasktoanissueatthistime.Pleasetryagain.Theissuewassuccessfullycreatedbutweareunabletoupdatethecommentatthistime.CopylinkOwnermrjbq7commentedSep17,2017I'mnotsure.Intherequirements.txt,itlookslikewespecifysomeoldversionsnumpy==1.11.1andcython==0.24.1.Notsurewhereyou'reseeingnumpy1.10*.Whathappensifyoudocondoinfota-lib?CopylinkAuthorthomas2004chcommentedSep18,2017•editedThisiswhatIget:C:\ProgramData\Anaconda3\Scripts>conda.exeinfota-libFetchingpackagemetadata...........NoPackagesFoundError:Packagemissingincurrentwin-64channels:ta-libBtw:IstalibfromQuantopian?CopylinkOwnermrjbq7commentedSep18,2017No,thisisnotaQuantopianproject.Andthisisjustalightweightwrapperfora"TA-Lib"Clibrarythathasbeenaroundfor15yearsorso.Ah,w



8. 【Talib】Python一次就裝好talib的方法及使用talib計算上百種 ...

一、前言在安裝spyder上用pip安裝talib出現錯誤訊息嗎!? Collecting talibNote: you may need to restart the kernel to us.關閉廣告恩哥Python量化教室-零基礎也能學會Python跳到主文Python從生活到業界,從零到專業:這邊的教學主打手把手教到會,非本科也能快速學習深入探討。

加入我的Telegram一起討論吧!https://t.me/joinchat/VUUuDt67Uq5l6CIQ部落格全站分類:數位生活相簿部落格留言名片你會有興趣Jan18Mon202117:45【Talib】Python一次就裝好talib的方法及使用talib計算上百種技術分析指標一、前言在安裝spyder上用pip安裝talib出現錯誤訊息嗎!?CollectingtalibNote:youmayneedtorestartthekerneltouseupdatedpackages. Downloadingtalib-0.1.1.tar.gz(1.3kB)Buildingwheelsforcollectedpackages:talib Buildingwheelfortalib(setup.py):started Buildingwheelfortalib(setup.py):finishedwithstatus'error' Runningsetup.pycleanfortalibFailedtobuildtalib這邊教你一次裝到好並且使用二、安裝talib一次裝好的方法(1)到網站下載whl檔 https://www.lfd.uci.edu/~gohlke/pythonlibs/可以用搜尋快速找到(搜尋ta-lib)找到對應版本然後去下載(2)打開Spyder或其他IDE,切到你下載.whl檔(你剛剛下載的套件包)所在的目錄下通常會在下載裡面(3)在Spyder或IDE輸入程式碼,就大功告成了pipinstallTA_Lib-0.4.19-cp38-cp38-win_amd64.whl三、使用talib(1)下載股價資料不知道資料從哪裡下載的可以看我的文章 【Python量化資料】【資料】python抓取資料最輕鬆的兩大方法#匯入套件importtalibimportpandas_datareaderasweb#下載股市資料df=web.DataReader('2330.TW','yahoo') (2)用talib計算技術指標#計算技術指標sma20=talib.SMA(df['Close'],20)#計算20日簡單平均如果不知道技術指標要給什麼參數或找不到技術指標名稱,如下找找不到指標不知道要給什麼參數 (3)查看全部的技術指標不然用talib.get_functions()也可以找到全部的技術指標#查看所有的指標li=talib.get_functions()print(li) (4)完整程式碼#匯入套件importtalibimportpandas_datareaderasweb#下載股市資料df=web.DataReader('2330.TW','yahoo')#計算技術指標sma20=talib.SMA(df['Close'],20)#計算20日簡單平均#查看所有的指標li=talib.get_functions()print(li) 四、後記開始急速開發策略吧~文章標籤python教學pythontalib技術分析技術指標全站熱搜創作者介紹恩哥Python恩哥Python量化教室-零基礎也能學會Python恩哥Python發表在痞客邦留言(0)人氣()全站分類:進修深造個人分類:【Talib】股市技術分析上一篇:【Python基礎】pip安裝Python套件包(package)的三大方法一種裝不好還有其他兩種!下一篇:【Spyder】解決spydernoipythonconsoleiscurrentlyavailabletorun問題歷史上的今天2021:【Python基礎】pip安裝Python套件包(package)的三大方法一種裝不好還有其他兩種!▲top留言列表發表留言熱門文章贊助商連結贊助商連結文章分類【Python量化資料】(3)【Python取得資料】(3)【Python資料分析】(3)【Python資料繪圖】(1)【Python虛擬環境】(2)【condaenv】虛擬環境(1)【VMware】虛擬環境(0)【資料庫應用】(3)【SQLServer】(1)【SQLite3】(2)【SQL】(0)【PythonIDE】(2)【Spyder】開發者必學IDE(1)【SublimeText】(2)【跨Python應用】(1)【W



9. PYTHON安裝TALIB @ 張郎生活的筆記:: 痞客邦::

關閉廣告張郎生活的筆記跳到主文每件事都有解決方法,只是你可能還不知道而已部落格全站分類:收藏嗜好相簿部落格留言名片May07Mon201814:25PYTHON安裝TALIB看了幾本PYTHON的書,突然想試試看Ta-lib的功能那自然先pipinstallta-lib囉馬可波羅說,新手開始每件事一定會遇到問題上網看了許多前輩的經驗最後面error有寫:Getitwith"MicrosofrVisualC++BuildTools"還附上一串網址http://landinghub.visualstudio.com/visual-cpp-build-tools那就不客氣給他點下去點擊底下的http://aka.ms/BuildTools拖拉網頁到最底下,記得選取你的電腦版本,我的是x86接著安裝,漫長的下載時間,可以先去喝杯咖啡接著就可以pipinstallta-lib看看囉~啥米?居然還是不行?再次參考網路的文章,試試看用輪子吧!https://www.lfd.uci.edu/~gohlke/pythonlibs/找到合適我的版本然後pip總算..........       文章標籤PYTHONTALIB全站熱搜創作者介紹張郎屋張郎生活的筆記張郎屋發表在痞客邦留言(1)人氣()E-mail轉寄全站分類:收藏嗜好個人分類:PYTHON此分類上一篇:安裝Tensorflow後,import遇到Errorimportingtensorflow.Unlessyouareusingbazel此分類下一篇:安裝Anaconda使用JupyterNotebook上一篇:DOCKER初次使用下一篇:安裝Anaconda使用JupyterNotebook▲top留言列表發表留言參觀人氣本日人氣:累積人氣:站方公告[公告]MIB廣告分潤計劃、PIXwallet錢包帳戶條款異動通知[公告]2021年度農曆春節期間服務公告[公告]新版部落格預設樣式上線活動快報一人一文挺餐飲!過往,部落客的文章為餐廳店家帶來許多生意。

現在,...看更多活動好康我的好友熱門文章文章分類其他工具(9)Docker(3)AUTOIT(2)PYTHON(68)R語言(2)最新文章最新留言動態訂閱文章精選文章精選2020十一月(1)2020六月(3)2020三月(1)2020一月(5)2019十二月(6)2019十一月(6)2019十月(3)2019九月(1)2019八月(8)2019七月(3)2019六月(1)2019五月(1)2019四月(3)2019三月(7)2019二月(4)2019一月(3)2018九月(1)2018八月(10)2018六月(2)2018五月(2)2018四月(6)2017七月(1)2017六月(4)2017五月(2)所有文章列表文章搜尋誰來我家QRCodePOWEREDBY(登入)回到頁首回到主文免費註冊客服中心痞客邦首頁©2003-2021PIXNET關閉視窗



常見投資理財問答


延伸文章資訊