網頁

2016年10月8日 星期六

[期貨] 台指期貨數據計算

以下整理台指的保證金及期交稅, 手續費

 

1. 保證金:

保證金分原始保證金及維持保證金.

原始保證金 83,000

維持保證金 64,000

2. 期交稅:

期交稅 37, 但是買賣都會收

3. 手續費:

手續費 100, 也是買賣都會收

4. 漲跌幅

指數 1 點的差額算 200 元.

5. 實例

10/7 日, 台指 12 月期. 開盤 9194, 最高 9202, 最低 9178, 收盤 9187.

以操作一口計 需要 83, 000 + 64, 000 = 147,000

 

如果在開盤買進, 然後在最高點平倉

獲利 (9202 – 9194 ) * 200 – 37*2 – 100 * 2 = 1,326

+ 0.9%

 

如果在開盤賣掉, 然後在最低點平倉

獲利 (9194 - 9178 ) * 200 – 37*2 – 100 * 2 = 2,953

+ 2.0 %

很有趣的結果. 參考參考.

[亂亂講] 四不總統 VS 六不總督

http://www.nownews.com/n/2016/10/07/2263684

 

總統蔡英文6日接受日本讀賣新聞專訪,這是她3天內第2度接受外媒專訪,主軸仍是兩岸關係。蔡英文繼續強調「4不」:承諾不變、善意不變、不屈服壓力,不走對抗老路.

 

這很有趣. 不由得想起英法戰爭時的兩廣總督葉名琛,面對英法聯軍兵臨城下, “不戰, 不和, 不守, 不死, 不降, 不走”. 最終被俘, 死在印度.

 

奈何.

2016年10月5日 星期三

[Util] 使用 Visual Studio 2015 下載 GitHub 的版本

1. 下載 repo

從 Visual Studio 的 File 選單, 選擇 File/New/Repository.

在 Visual Studio 的 Team Explorer 中, Local Repository 分頁, 選擇 Clone

image

填入 Git 的 URL, 例如 https://github.com/lxnick/Util.git, 此時 Local Repository 的路徑也已經做了相對的變化.

image

然後按下 Clone. 檔案就複製到 local.

2. 在 Visual Studio 中, 打開下載的專案.

先打開 Visual Studio 的 Team 分頁

image

選擇要打開的專案.  例如 Util. 在專案名稱上面按右鍵,  然後選擇 Open.

image

在 Solution 的選單下方, 選擇 Open. 在彈出的視窗中, 選擇 Util.sln. 回到 Solution Explorer 畫面, 專案已經打開.

[Util] 使用 Visual Studio 2015 的 git extension 連接 GitHub

介紹如何在 Visual Studio Community 2015 的 IDE 中, 連接上 GitHub. 現在 Visual Studio Community 2015 是免費的.

 

1. 首先在 GitHub 上建立一個 repository(Demo)

image

HTTPS 後面的, 就是可以存取到這個 repository 的網路位置.

image

2. 在本機端建立一個 github 的目錄.

image

3. 設定 Visual Studio 的 GitHub

在 Team Explorer 的分頁, 按下 Home 按紐, 以切換到 Home 分頁

image

選擇 Settings. 再選擇 Settings 下的 Global Settings. 填入 User name, email address, Default Repository Location 填入先前給定的路徑. 最後按下 Update 更新.

image

 

4. 在 Visual Studio 建立一個新的專案, Location 指向 先前給定的路徑.

image

完成後儲存專案.

image

專案檔案已生成在路徑中.

image

 

5.  將專案加入 Source Control

在 Solution Explorer 的分頁中. 在 Solution 名稱上按右鍵, 在彈出功能選單中, 選取 Add Solution to Source Control.

然後切換到 Team Explorer 畫面. 可以看到專案已被加入 local repository.

image

把 Enter a comment message 改掉 (譬如 Initial Version), Commit All 的顏色才會變成可以按下的狀態.

image

然後就 Commit All. 把變更加入 local repository.

6. 同步到 GitHub

在 Changes 分頁, 按下 Sync (藍色有底線的字 ). 切換到 Publish 頁面.

image

這個頁面有 3 個項目:

1. Publish to Visual Studio Team Services ( 這是 Microsoft 的 Team Server)

2. Publish to GitHub (這是我另外安裝的 Git extension for Visual Studio, 也可以用, 但不是這邊的重點)

3. Publish to Remote Repository (這是以下要說明的方法)

image

展開 Publish to Remote Repository, 在 “Enter the URL of an empty Git repo” , 代換成 GitHub 的 URL, 例如

https://github.com/lxnick/Demo.git” 然後按下 Publish.

image

7. 完成. 回到 GitHub 的網頁. 檔案資料已經上傳.

image