年初来パフォーマンス順 | 前日比順 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
日経平均とポートフォリオは10ポイントの大差、TOPIXとも4ポイントの差。この差はどうにも縮まらない。
日経平均は年初来20%のパフォーマンスで、他のベンチマークをダントツで引き離している。TOPIXとの差は5ポイント。さわかみはTOPIXと同等、ひふみは日経平均と7ポイントの大差、TOPIXからも3ポイント話されている。
中国市場、インド市場
5月22日 | 香港ハンセン | 1.17 |
上海総合 | 0.39 | |
SENSEX30 | 0.38 | |
1309乖離率 | 0.09 | |
1678乖離率 | 0.80 |
世界の株価指数と米長期金利 - Yahoo!ファイナンス
ウエルスアドバイザー [ ETF乖離時系列 ]
ウエルスアドバイザー [ ETF乖離時系列 ]
OneNote + PowerShell
なかなかうまくいかない。root nodeから末端のページまでの構造を取得することはできるが、IDを指定した項目から末端までの構造を取得できない。IDは取得できるのだが、IDを指定しても何も返してくれない。
PublishでExportもできないばかりか、OneNote自体が落ちる。
OpenHierarchy~Publish
function printAll($hierarchy){ foreach ($notebook in $hierarchy.Notebooks.Notebook){ printName $notebook 0 $False foreach ($sectiongroup in $notebook.SectionGroup){ printName $sectiongroup 1 $False } foreach ($section in $notebook.Section){ printName $section 1 $False foreach ($page in $section.Page){ #printName $page 2 $True printName $page 2 $False } } } } function printName($items, [int]$indent_level, [bool]$printID){ $indent = "`t" * $indent_level if ($printID){ foreach($item in $items){ Write-Host ($indent + $item.name + "`t" + $item.ID) } } else{ foreach($item in $items){ Write-Host ($indent + $item.name) } } } $OneNote = New-Object -ComObject OneNote.Application Add-Type -assembly Microsoft.Office.Interop.OneNote $OneNoteFilePath = "D:\user\OneNote\powershell-test\section-20230522.one" $object = "" $OneNoteID = "" [xml]$Hierarchy = "" $OneNote.OpenHierarchy( $OneNoteFilePath, $object, [ref]$OneNoteID, [Microsoft.Office.InterOp.OneNote.CreateFileType]::cftNone) $OneNote.GetHierarchy( $OneNoteID, [Microsoft.Office.InterOp.OneNote.HierarchyScope]::hsPages, [ref]$Hierarchy, [Microsoft.Office.InterOp.OneNote.XMLSchema]::xsCurrent) printAll($Hierarchy) $publish_path = "D:\user\OneNote\powershell-test\section-20230522.docx" $OneNote.Publish( $OneNoteID, $publish_path, [Microsoft.Office.InterOp.OneNote.PublishFormat]::pfWord, "") [System.Runtime.InteropServices.Marshal]::ReleaseComObject($OneNote) | Out-Null